44 research outputs found

    Product Quality Modeling and Optimizing Control of Soft Capsule Dropping Pills Based on LSSVM and PSO

    Get PDF
    Soft capsule dropping pills product quality control system is a multi-input and multi-output complex system. First of all, the process parameters and a two-level hierarchy index system of soft capsule pills product quality were proposed based on the analysis to the production process. Then the model was established based on least squares support vector machine (LSSVM), whose inputs are the process parameters and outputs are the secondary quality indexes. Analysis hierarchy process (AHP) was used to determine the weights of the secondary quality indexes. On this basis, particle swarm optimization (PSO) algorithm was used to optimize the process parameters in order to improve the yield of soft capsule pills, which is a multi-objective optimization problem. The nominal values of the process parameters corresponding to the highest yield can be obtained. The yield increases by 2.7% when the optimizing parameters are used to the soft capsule dropping pills process

    Regulation of DJ-1 by glutaredoxin 1 \u3ci\u3ein vivo – implications for Parkinson’s disease\u3c/i\u3e

    Get PDF
    Parkinson’s disease (PD) is the second most common neurodegenerative disease worldwide, caused by the degeneration of the dopaminergic neurons in the substantia nigra. Mutations in PARK7 (DJ-1) result in early onset autosomal recessive PD, and oxidative modification of DJ-1 has been reported to regulate the protective activity of DJ-1 in vitro. Glutathionylation is a prevalent redox modification of proteins resulting from the disulfide adduction of the glutathione moiety to a reactive cysteine-SH; and glutathionylation of specific proteins has been implicated in regulation of cell viability. Glutaredoxin 1 (Grx1) is the principal deglutathionylating enzyme within cells, and it has been reported to mediate protection of dopaminergic neurons in C. elegans, however many of the functional downstream targets of Grx1 in vivo remain unknown. Previously, DJ-1 protein content was shown to decrease concomitantly with diminution of Grx1 protein content in cell culture of model neurons (SH-SY5Y and Neuro-2A lines). In the current study we aimed to investigate the regulation of DJ-1 by Grx1 in vivo and characterize its glutathionylation in vitro. Here, with Grx−/− mice we provide evidence that Grx1 regulates protein levels of DJ-1 in vivo. Furthermore, with model neuronal cells (SH-SY5Y) we observed decreased DJ-1 protein content in response to treatment with known glutathionylating agents; and with isolated DJ-1 we identified two distinct sites of glutathionylation. Finally, we found that overexpression of DJ-1 in the dopaminergic neurons partly compensates for the loss of the Grx1 homolog in a C. elegans in vivo model of PD. Therefore; our results reveal a novel redox modification of DJ-1 and suggest a novel regulatory mechanism for DJ-1 content in vivo

    Virtual Machine Support for Many-Core Architectures: Decoupling Abstract from Concrete Concurrency Models

    Get PDF
    The upcoming many-core architectures require software developers to exploit concurrency to utilize available computational power. Today's high-level language virtual machines (VMs), which are a cornerstone of software development, do not provide sufficient abstraction for concurrency concepts. We analyze concrete and abstract concurrency models and identify the challenges they impose for VMs. To provide sufficient concurrency support in VMs, we propose to integrate concurrency operations into VM instruction sets. Since there will always be VMs optimized for special purposes, our goal is to develop a methodology to design instruction sets with concurrency support. Therefore, we also propose a list of trade-offs that have to be investigated to advise the design of such instruction sets. As a first experiment, we implemented one instruction set extension for shared memory and one for non-shared memory concurrency. From our experimental results, we derived a list of requirements for a full-grown experimental environment for further research

    Distributed JAVA virtual machine with thread migration

    No full text
    published_or_final_versionComputer Science and Information SystemsDoctoralDoctor of Philosoph

    Mfn2 Overexpression Attenuates MPTP Neurotoxicity In Vivo

    No full text
    Mitochondrial dysfunction represents a critical event in the pathogenesis of Parkinson’s disease (PD). Increasing evidence demonstrates that disturbed mitochondrial dynamics and quality control play an important role in mitochondrial dysfunction in PD. Our previous study demonstrated that MPP+ induces mitochondrial fragmentation in vitro. In this study, we aimed to assess whether blocking MPTP-induced mitochondrial fragmentation by overexpressing Mfn2 affords neuroprotection in vivo. We found that the significant loss of dopaminergic neurons in the substantia nigra (SN) induced by MPTP treatment, as seen in wild-type littermate control mice, was almost completely blocked in mice overexpressing Mfn2 (hMfn2 mice). The dramatic reduction in dopamine neuronal fibers and dopamine levels in the striatum caused by MPTP administration was also partially inhibited in hMfn2 mice. MPTP-induced oxidative stress and inflammatory response in the SN and striatum were significantly alleviated in hMfn2 mice. The impairment of motor function caused by MPTP was also blocked in hMfn2 mice. Overall, our work demonstrates that restoration of mitochondrial dynamics by Mfn2 overexpression protects against neuronal toxicity in an MPTP-based PD mouse model, which supports the modulation of mitochondrial dynamics as a potential therapeutic target for PD treatment

    Mfn2 Overexpression Attenuates MPTP Neurotoxicity In Vivo

    No full text
    Mitochondrial dysfunction represents a critical event in the pathogenesis of Parkinson’s disease (PD). Increasing evidence demonstrates that disturbed mitochondrial dynamics and quality control play an important role in mitochondrial dysfunction in PD. Our previous study demonstrated that MPP+ induces mitochondrial fragmentation in vitro. In this study, we aimed to assess whether blocking MPTP-induced mitochondrial fragmentation by overexpressing Mfn2 affords neuroprotection in vivo. We found that the significant loss of dopaminergic neurons in the substantia nigra (SN) induced by MPTP treatment, as seen in wild-type littermate control mice, was almost completely blocked in mice overexpressing Mfn2 (hMfn2 mice). The dramatic reduction in dopamine neuronal fibers and dopamine levels in the striatum caused by MPTP administration was also partially inhibited in hMfn2 mice. MPTP-induced oxidative stress and inflammatory response in the SN and striatum were significantly alleviated in hMfn2 mice. The impairment of motor function caused by MPTP was also blocked in hMfn2 mice. Overall, our work demonstrates that restoration of mitochondrial dynamics by Mfn2 overexpression protects against neuronal toxicity in an MPTP-based PD mouse model, which supports the modulation of mitochondrial dynamics as a potential therapeutic target for PD treatment

    Lightweight Transparent Java Thread Migration for Distributed JVM

    No full text
    A distributed JVM on a cluster can provide a highperformance platform for running multi-threaded Java applications transparently. E#cient scheduling of Java threads among cluster nodes in a distributed JVM is desired for maintaining a balanced system workload so that the application can achieve maximum speedup. We present a transparent thread migration system that is able to support high-performance native execution of multi-threaded Java programs. To achieve migration transparency, we perform dynamic native code instrumentation inside the JIT compiler. The mechanism has been successfully implemented and integrated in JESSICA2, a JIT-enabled distributed JVM, to enable automatic thread distribution and dynamic load balancing in a cluster environment

    JIT-Compiler-Assisted Distributed Java Virtual Machine

    No full text
    There is now a strong interest in high-performance execution of multithreaded Java programs in a cluster. Previous efforts to provide for such executions have either used static compilation tools that can transform multithreaded Java programs into parallel versions, or interpreter-based cluster-aware JVMs that offer the needed support. They failed however to be fully compliant with the Java language specification or to achieve high performance due to their weaknesses in supporting thread distribution and global object sharing. We present our research experience in the design and implementation a JIT-compiler-assisted distributed Java Virtual Machine. In our system, we make use of a JIT compiler to realize and optimize dynamic thread migration and global object sharing in a distributed environment. 1
    corecore